Execute the string (between quotation marks), which must have the form of an Oberon command sequence, e.g. "Dialog.Beep; Dialog.Beep". For simple commands, the string delimiters may be omitted, e.g. Dialog.Beep.
PROCEDURE ShowCommands
Guard: TextCmds.SelectionGuard
Show the commands (parameterless exported procedures) of the module whose name is selected.
PROCEDURE ShowGlobalVariables
Guard: TextCmds.SelectionGuard
Show the global variables (parameterless exported procedures) of the module whose name is selected.
PROCEDURE ShowLoadedModules
Show the list of all loaded modules.
PROCEDURE ShowLoadedTopModules
Show the list of loaded top modules, i.e. of modules which are not imported by other modules. This command can be convenient to determine the modules which should be linked together when building an application (all depending modules are linked in automatically).
PROCEDURE ShowResources
Show the current use of resources such as heap space and open file access paths.
PROCEDURE ShowViewState
Guard: TextCmds.FocusGuard
Show the state of the current focus view.
PROCEDURE Unload
Guard: TextCmds.FocusGuard
Tries to unload the module whose source is in the focus view. Unloading fails if the specified module is not loaded yet, or if it is not a top module.
PROCEDURE UnloadModuleList
Guard: TextCmds.SelectionGuard
Tries to unload a list of modules whose names are selected. Unloading may partially or completely fail if one of the specified modules is not loaded yet, or if it is still being importet by at least one client module. Modules must be unloaded from top to bottom.